web3.js@0.2x.x web3.net.peerCount
web3.net.peerCount
ノードに接続している peer ノードの数を返します。
このプロパティは読み取り専用です。
非同期の場合
web3.net.getPeerCount(callback(error, result){ ... })
戻り値
Number
現在このクライアントに接続している peer ノードの数を返します。
ここでいう"クライアント"は、web3.js のプロバイダのノードのことを指すと思われるが、確認する。
サンプルコード
code:example.js
var peerCount = web3.net.peerCount;
console.log(peerCount); // 4
参考